This repository has no description
semble
/
src
/
webapp
/
app
/
(dashboard)
/
profile
/
[handle]
/
(withHeader)
/
collections
/
error.tsx
320 B
12 lines
1'use client';
2
3import CollectionsContainerError from '@/features/collections/containers/collectionsContainer/Error.CollectionsContainer';
4import { Container } from '@mantine/core';
5
6export default function Error() {
7 return (
8 <Container p="xs" size="xl">
9 <CollectionsContainerError />
10 </Container>
11 );
12}